home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / smalltlk.zip / TESTS / CHECK.ST < prev    next >
Text File  |  1987-06-17  |  256b  |  16 lines

  1. Class CheckBook
  2. | balance |
  3. [
  4.     new
  5.         balance <- 0
  6. |
  7.     + amount
  8.         balance <- balance + amount.
  9.         ^ balance
  10. |
  11.     - amount
  12.         balance <- balance - amount.
  13.         ^ balance
  14. ]
  15.  
  16.